home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zgstate.c < prev    next >
C/C++ Source or Header  |  1997-06-18  |  10KB  |  414 lines

  1. /* Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zgstate.c */
  20. /* Graphics state operators */
  21. #include "math_.h"
  22. #include "ghost.h"
  23. #include "errors.h"
  24. #include "oper.h"
  25. #include "ialloc.h"
  26. #include "idict.h"
  27. #include "istruct.h"
  28. #include "igstate.h"
  29. #include "gsmatrix.h"
  30. #include "store.h"
  31.  
  32. /* Forward references */
  33. private int near num_param(P2(const_os_ptr, int (*)(P2(gs_state *, floatp))));
  34.  
  35. /* Structure descriptors */
  36. private_st_int_gstate();
  37.  
  38. /* ------ Operations on the entire graphics state ------ */
  39.  
  40. /* The current graphics state */
  41. gs_state *igs;
  42. private gs_gc_root_t igs_root;
  43.  
  44. /* An empty dictionary for the pagedevice member of the int_gstate. */
  45. ref i_null_pagedevice;
  46. private ref *npd_p;
  47. private gs_gc_root_t npd_root;
  48.  
  49. /* "Client" procedures */
  50. private void *gs_istate_alloc(P1(gs_memory_t *mem));
  51. private int gs_istate_copy(P2(void *to, const void *from));
  52. private void gs_istate_free(P2(void *old, gs_memory_t *mem));
  53. private const gs_state_client_procs istate_procs = {
  54.     gs_istate_alloc,
  55.     gs_istate_copy,
  56.     gs_istate_free
  57. };
  58.  
  59. /* Initialize the graphics stack. */
  60. void
  61. igs_init(void)
  62. {    int_gstate *iigs;
  63.     ref proc0;
  64.  
  65.     igs = gs_state_alloc(imemory);
  66.     iigs = gs_alloc_struct(imemory, int_gstate, &st_int_gstate, "igs_init");
  67.     int_gstate_map_refs(iigs, make_null);
  68.     make_empty_array(&iigs->dash_pattern, a_all);
  69.     ialloc_ref_array(&proc0, a_readonly + a_executable, 2,
  70.              "igs_init");
  71.     make_oper(proc0.value.refs, 0, zpop);
  72.     make_real(proc0.value.refs + 1, 0.0);
  73.     iigs->black_generation = proc0;
  74.     iigs->undercolor_removal = proc0;
  75.     dict_create(0, &i_null_pagedevice);
  76.     r_clear_attrs(&i_null_pagedevice, a_write);
  77.     iigs->pagedevice = i_null_pagedevice;
  78.     npd_p = &i_null_pagedevice;
  79.     gs_register_ref_root(imemory, &npd_root, (void **)&npd_p, "igs(npd)");
  80.     gs_state_set_client(igs, iigs, &istate_procs);
  81.     gs_register_struct_root(imemory, &igs_root, (void **)&igs, "igs");
  82.     /* PostScript code wants limit clamping enabled. */
  83.     gs_setlimitclamp(igs, true);
  84.     /*
  85.      * gsave and grestore only work properly
  86.      * if there are always at least 2 entries on the stack.
  87.      * We count on the PostScript initialization code to do a gsave.
  88.      */
  89. }
  90.  
  91. /* - gsave - */
  92. int
  93. zgsave(register os_ptr op)
  94. {    return gs_gsave(igs);
  95. }
  96.  
  97. /* - grestore - */
  98. int
  99. zgrestore(register os_ptr op)
  100. {    return gs_grestore(igs);
  101. }
  102.  
  103. /* - grestoreall - */
  104. int
  105. zgrestoreall(register os_ptr op)
  106. {    return gs_grestoreall(igs);
  107. }
  108.  
  109. /* - initgraphics - */
  110. private int
  111. zinitgraphics(register os_ptr op)
  112. {    /* gs_initgraphics does a setgray; we must clear the interpreter's */
  113.     /* cached copy of the color space object. */
  114.     int code = gs_initgraphics(igs);
  115.     if ( code >= 0 )
  116.       make_null(&istate->colorspace.array);
  117.     return code;
  118. }
  119.  
  120. /* ------ Operations on graphics state elements ------ */
  121.  
  122. /* <num> setlinewidth - */
  123. private int
  124. zsetlinewidth(register os_ptr op)
  125. {    /*
  126.      * The Red Book doesn't say anything about this, but Adobe
  127.      * interpreters return (or perhaps store) the absolute value
  128.      * of the width.
  129.      */
  130.     float width;
  131.     int code = real_param(op, &width);
  132.  
  133.     if ( code < 0 )
  134.       return_op_typecheck(op);
  135.     code = gs_setlinewidth(igs, fabs(width));
  136.     if ( code >= 0 )
  137.       pop(1);
  138.     return code;
  139. }
  140.  
  141. /* - currentlinewidth <num> */
  142. private int
  143. zcurrentlinewidth(register os_ptr op)
  144. {    push(1);
  145.     make_real(op, gs_currentlinewidth(igs));
  146.     return 0;
  147. }
  148.  
  149. /* <cap_int> .setlinecap - */
  150. private int
  151. zsetlinecap(register os_ptr op)
  152. {    int param;
  153.     int code = int_param(op, max_int, ¶m);
  154.  
  155.     if ( code < 0 || (code = gs_setlinecap(igs, (gs_line_cap)param)) < 0 )
  156.       return code;
  157.     pop(1);
  158.     return 0;
  159. }
  160.  
  161. /* - currentlinecap <cap_int> */
  162. private int
  163. zcurrentlinecap(register os_ptr op)
  164. {    push(1);
  165.     make_int(op, (int)gs_currentlinecap(igs));
  166.     return 0;
  167. }
  168.  
  169. /* <join_int> .setlinejoin - */
  170. private int
  171. zsetlinejoin(register os_ptr op)
  172. {    int param;
  173.     int code = int_param(op, max_int, ¶m);
  174.  
  175.     if ( code < 0 || (code = gs_setlinejoin(igs, (gs_line_join)param)) < 0 )
  176.       return code;
  177.     pop(1);
  178.     return 0;
  179. }
  180.  
  181. /* - currentlinejoin <join_int> */
  182. private int
  183. zcurrentlinejoin(register os_ptr op)
  184. {    push(1);
  185.     make_int(op, (int)gs_currentlinejoin(igs));
  186.     return 0;
  187. }
  188.  
  189. /* <num> setmiterlimit - */
  190. private int
  191. zsetmiterlimit(register os_ptr op)
  192. {    return num_param(op, gs_setmiterlimit);
  193. }
  194.  
  195. /* - currentmiterlimit <num> */
  196. private int
  197. zcurrentmiterlimit(register os_ptr op)
  198. {    push(1);
  199.     make_real(op, gs_currentmiterlimit(igs));
  200.     return 0;
  201. }
  202.  
  203. /* <array> <offset> setdash - */
  204. private int
  205. zsetdash(register os_ptr op)
  206. {    os_ptr op1 = op - 1;
  207.     float offset;
  208.     int code = real_param(op, &offset);
  209.     uint i, n;
  210.     gs_memory_t *mem = imemory;
  211.     float *pattern;
  212.  
  213.     if ( code < 0 )
  214.       return_op_typecheck(op);
  215.     if ( !r_is_array(op1) )
  216.       return_op_typecheck(op1);
  217.     /* Adobe interpreters apparently don't check the array for */
  218.     /* read access, so we won't either. */
  219.     /*check_read(*op1);*/
  220.     /* Unpack the dash pattern and check it */
  221.     n = r_size(op1);
  222.     pattern =
  223.       (float *)gs_alloc_byte_array(mem, n, sizeof(float), "setdash");
  224.     if ( pattern == 0 )
  225.       return_error(e_VMerror);
  226.     for ( i = 0, code = 0; i < n && code >= 0; ++i )
  227.       { ref element;
  228.         array_get(op1, (long)i, &element);
  229.         code = real_param(&element, &pattern[i]);
  230.       }
  231.     if ( code >= 0 )
  232.       code = gs_setdash(igs, pattern, n, offset);
  233.     gs_free_object(mem, pattern, "setdash"); /* gs_setdash copies this */
  234.     if ( code < 0 )
  235.       return code;
  236.     ref_assign(&istate->dash_pattern, op1);
  237.     pop(2);
  238.     return code;
  239. }
  240.  
  241. /* - currentdash <array> <offset> */
  242. private int
  243. zcurrentdash(register os_ptr op)
  244. {    push(2);
  245.     ref_assign(op - 1, &istate->dash_pattern);
  246.     make_real(op, gs_currentdash_offset(igs));
  247.     return 0;
  248. }
  249.  
  250. /* <num> setflat - */
  251. private int
  252. zsetflat(register os_ptr op)
  253. {    return num_param(op, gs_setflat);
  254. }
  255.  
  256. /* - currentflat <num> */
  257. private int
  258. zcurrentflat(register os_ptr op)
  259. {    push(1);
  260.     make_real(op, gs_currentflat(igs));
  261.     return 0;
  262. }
  263.  
  264. /* ------ Extensions ------ */
  265.  
  266. /* <bool> .setaccuratecurves - */
  267. private int
  268. zsetaccuratecurves(register os_ptr op)
  269. {    check_type(*op, t_boolean);
  270.     gs_setaccuratecurves(igs, op->value.boolval);
  271.     pop(1);
  272.     return 0;
  273. }
  274.  
  275. /* - .currentaccuratecurves <bool> */
  276. private int
  277. zcurrentaccuratecurves(register os_ptr op)
  278. {    push(1);
  279.     make_bool(op, gs_currentaccuratecurves(igs));
  280.     return 0;
  281. }
  282.  
  283. /* <adjust.x> <adjust.y> .setfilladjust2 - */
  284. private int
  285. zsetfilladjust2(register os_ptr op)
  286. {    float adjust[2];
  287.     int code = num_params(op, 2, adjust);
  288.  
  289.     if ( code < 0 )
  290.       return code;
  291.     code = gs_setfilladjust(igs, adjust[0], adjust[1]);
  292.     if ( code < 0 )
  293.       return code;
  294.     pop(2);
  295.     return 0;
  296. }
  297.  
  298. /* - .currentfilladjust2 <adjust.x> <adjust.y> */
  299. private int
  300. zcurrentfilladjust2(register os_ptr op)
  301. {    gs_point adjust;
  302.  
  303.     push(2);
  304.     gs_currentfilladjust(igs, &adjust);
  305.     make_real(op - 1, adjust.x);
  306.     make_real(op, adjust.y);
  307.     return 0;
  308. }
  309.  
  310. /* <bool> .setdashadapt - */
  311. private int
  312. zsetdashadapt(register os_ptr op)
  313. {    check_type(*op, t_boolean);
  314.     gs_setdashadapt(igs, op->value.boolval);
  315.     pop(1);
  316.     return 0;
  317. }
  318.  
  319. /* - .currentdashadapt <bool> */
  320. private int
  321. zcurrentdashadapt(register os_ptr op)
  322. {    push(1);
  323.     make_bool(op, gs_currentdashadapt(igs));
  324.     return 0;
  325. }
  326.  
  327. /* <num> <bool> .setdotlength - */
  328. private int
  329. zsetdotlength(register os_ptr op)
  330. {    float length;
  331.     int code = num_params(op - 1, 1, &length);
  332.  
  333.     if ( code < 0 )
  334.       return code;
  335.     check_type(*op, t_boolean);
  336.     code = gs_setdotlength(igs, length, op->value.boolval);
  337.     if ( code < 0 )
  338.       return code;
  339.     pop(2);
  340.     return 0;
  341. }
  342.  
  343. /* - .currentdotlength <num> <bool> */
  344. private int
  345. zcurrentdotlength(register os_ptr op)
  346. {    push(2);
  347.     make_real(op - 1, gs_currentdotlength(igs));
  348.     make_bool(op, gs_currentdotlength_absolute(igs));
  349.     return 0;
  350. }
  351.  
  352. /* ------ Initialization procedure ------ */
  353.  
  354. BEGIN_OP_DEFS(zgstate_op_defs) {
  355.     {"0.currentaccuratecurves", zcurrentaccuratecurves},
  356.     {"0currentdash", zcurrentdash},
  357.     {"0.currentdashadapt", zcurrentdashadapt},
  358.     {"0.currentdotlength", zcurrentdotlength},
  359.     {"0.currentfilladjust2", zcurrentfilladjust2},
  360.     {"0currentflat", zcurrentflat},
  361.     {"0currentlinecap", zcurrentlinecap},
  362.     {"0currentlinejoin", zcurrentlinejoin},
  363.     {"0currentlinewidth", zcurrentlinewidth},
  364.     {"0currentmiterlimit", zcurrentmiterlimit},
  365.     {"0grestore", zgrestore},
  366.     {"0grestoreall", zgrestoreall},
  367.     {"0gsave", zgsave},
  368.     {"0initgraphics", zinitgraphics},
  369.     {"1.setaccuratecurves", zsetaccuratecurves},
  370.     {"2setdash", zsetdash},
  371.     {"1.setdashadapt", zsetdashadapt},
  372.     {"2.setdotlength", zsetdotlength},
  373.     {"2.setfilladjust2", zsetfilladjust2},
  374.     {"1setflat", zsetflat},
  375.     {"1.setlinecap", zsetlinecap},
  376.     {"1.setlinejoin", zsetlinejoin},
  377.     {"1setlinewidth", zsetlinewidth},
  378.     {"1setmiterlimit", zsetmiterlimit},
  379. END_OP_DEFS(0) }
  380.  
  381. /* ------ Internal routines ------ */
  382.  
  383. /* Allocate the interpreter's part of a graphics state. */
  384. private void *
  385. gs_istate_alloc(gs_memory_t *mem)
  386. {    return gs_alloc_struct(mem, int_gstate, &st_int_gstate, "int_gsave");
  387. }
  388.  
  389. /* Copy the interpreter's part of a graphics state. */
  390. private int
  391. gs_istate_copy(void *to, const void *from)
  392. {    *(int_gstate *)to = *(const int_gstate *)from;
  393.     return 0;
  394. }
  395.  
  396. /* Free the interpreter's part of a graphics state. */
  397. private void
  398. gs_istate_free(void *old, gs_memory_t *mem)
  399. {    gs_free_object(mem, old, "int_grestore");
  400. }
  401.  
  402. /* Get a numeric parameter */
  403. private int near
  404. num_param(const_os_ptr op, int (*pproc)(P2(gs_state *, floatp)))
  405. {    float param;
  406.     int code = real_param(op, ¶m);
  407.  
  408.     if ( code < 0 )
  409.       return_op_typecheck(op);
  410.     code = (*pproc)(igs, param);
  411.     if ( !code ) pop(1);
  412.     return code;
  413. }
  414.